home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / viewkit / builderExamples / stopwatch / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  385 b   |  19 lines

  1. #!smake
  2.  
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. LLDLIBS = -lvk -lSgm -lvkhelp -lvk -lvkhelp -lXm -lSgm -lXt -lX11
  6.  
  7. C++FILES= main-C.c++ Control.c++ ControlDerived.c++ Face.c++ FaceDerived.c++ \
  8.     MainWindow0.c++ Stopwatch.c++ StopwatchDerived.c++
  9.     
  10. TARGETS    = stopwatch
  11.  
  12. default all: $(TARGETS)
  13.  
  14. include $(COMMONRULES)
  15.  
  16. $(TARGETS): $(OBJECTS)
  17.     $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
  18.  
  19.